home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / acro150.zip / acro150b.zi_ / acrobat / startbbs.Cmd < prev    next >
OS/2 REXX Batch file  |  1996-07-07  |  764b  |  30 lines

  1. @ECHO OFF
  2.  
  3. REM ┌─────────────────────────────────────────────────────────────────────┐
  4. REM │ Start AcroBat/2 in answering mode  ACROBAT comport nodenumber       │
  5. REM └─────────────────────────────────────────────────────────────────────┘
  6. REM
  7. REM IMPORTANT: Don't run two bbs'ses (local and real online) at the same
  8. REM nodenumber... This won't work properly :)
  9. REM Don't change this batchfile unless the nodenumber and the comport!!!
  10. REM This example starts bbs at comport 2 on node 1
  11. REM Also takes a safety backup
  12.  
  13. CLS
  14. COPY c:\ACROBAT\US*.DAT c:\ACROBAT\BACKUP\US*.BAK
  15.  
  16. :LOOP
  17.  
  18. c:
  19. CD\ACROBAT
  20. ACROBAT 2 1
  21.  
  22. IF ERRORLEVEL 255 GOTO FAULT
  23. IF ERRORLEVEL 1 GOTO LOOP
  24. IF ERRORLEVEL 0 GOTO END
  25.  
  26. :FAULT
  27. ECHO Abnormal program termination
  28.  
  29. :END
  30.